home *** CD-ROM | disk | FTP | other *** search
- #ifndef __BLDRAW_
- #define __BLDRAW_
- /* Draw class with help access */
-
- #include "bl.h"
- #include "draw.h"
-
- class BlockDraw : public ObjectKit
- {
- public:
- Draw* draw;
- Window* w1;
-
- BlockDraw(rect coord);
- virtual int active() { return w1->active(); }
- virtual void rearrange();
- };
-
- #endif __BLDRAW_